From: Keir Fraser Date: Thu, 9 Oct 2008 09:06:50 +0000 (+0100) Subject: xend: Fix typo _gatherDom -> gatherDom. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14091^2~7 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=7c72e3bf4ce63d67f6d768f6c824a0ceca39a2d8;p=xen.git xend: Fix typo _gatherDom -> gatherDom. Signed-off-by: Jim Fehlig --- diff --git a/tools/python/xen/xend/image.py b/tools/python/xen/xend/image.py index dd5e83fd8e..4690c93aa3 100644 --- a/tools/python/xen/xend/image.py +++ b/tools/python/xen/xend/image.py @@ -502,7 +502,7 @@ class ImageHandler: if fifo_fd >= 0: self._openSentinel(sentinel_path_fifo) os.close(fifo_fd) - self.pid = self.vm._gatherDom(('image/device-model-pid', int)) + self.pid = self.vm.gatherDom(('image/device-model-pid', int)) log.debug("%s device model rediscovered, pid %s sentinel fifo %s", name, self.pid, sentinel_path_fifo) self.sentinel_thread = thread.start_new_thread(self._sentinel_watch,())